home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / close_batch.sql < prev    next >
Text File  |  2000-05-12  |  804b  |  20 lines

  1. /* RCSVER $Id: close_batch.sql,v 1.1 1999-12-02 16:51:22-06 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1998, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        close_batch
  6. * Date:        08/18/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the close_batch table.This table contains
  9. *        general information concerning a set of closed matches.
  10. * Changes:
  11. ************************************************************************* */
  12. CREATE TABLE close_batch
  13. (
  14.     clbatch_num    NUMBER(38),    /* Batch number for this closing */
  15.     user_name    VARCHAR2(50),    /* CHC user performing the close */
  16.     close_date    DATE,        /* Date of closing */
  17.     comments    VARCHAR2(500),    /* Comments */
  18.     CONSTRAINT pk_closebatch PRIMARY KEY (clbatch_num)
  19. );
  20.